home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / kompon / d123456 / CHEMPLOT.ZIP / TPlot / TChart Demo / TChart.dpr < prev    next >
Text File  |  2001-07-12  |  211b  |  14 lines

  1. program TChart;
  2.  
  3. uses
  4.   Forms,
  5.   TChartNormal1 in 'TChartNormal1.pas' {MainForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TMainForm, MainForm);
  12.   Application.Run;
  13. end.
  14.